Skip to content

Bump net.engawapg.lib:zoomable from 2.5.0 to 2.6.0#25

Merged
grimreaper merged 1 commit intomasterfrom
dependabot/gradle/net.engawapg.lib-zoomable-2.6.0
Apr 12, 2025
Merged

Bump net.engawapg.lib:zoomable from 2.5.0 to 2.6.0#25
grimreaper merged 1 commit intomasterfrom
dependabot/gradle/net.engawapg.lib-zoomable-2.6.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 11, 2025

Bumps net.engawapg.lib:zoomable from 2.5.0 to 2.6.0.

Release notes

Sourced from net.engawapg.lib:zoomable's releases.

v2.6.0

Zoom with Scroll Component

A new experimental API zoomableWithScroll has been added. It allows you to zoom in on components that scroll, such as LazyColumn.

LazyColumn(
    modifier = Modifier.zoomableWithScroll(rememberZoomState())
) {
    items(100) { Text("Item $it") }
}

It can also be used with Modifier.verticalScroll or Modifier.horizontalScroll. In that case, put zoomableWithScroll before verticalScroll or horizontalScroll in the Modifier chain.

Column(
    modifier = Modifier
        .fillMaxSize()
        .zoomableWithScroll(rememberZoomState())
        .horizontalScroll(rememberScrollState())
) {
    repeat(100) { Text("Item $it") }
}

What's Changed

Full Changelog: usuiat/Zoomable@v2.5.0...v2.6.0

Commits
  • 9a6050d v2.6.0
  • dfe0b15 Update README.md
  • 892b667 Merge pull request #339 from usuiat/renovate/androidx.core-core-ktx-1.x
  • 84fad9f zoomable: Remove unnecessary androidx.core dependency in androidMain
  • 19aa282 Update dependency androidx.core:core-ktx to v1.16.0
  • ab719c6 Merge pull request #338 from usuiat/renovate/kotlinx-coroutines-monorepo
  • 68e47d2 Update kotlinx-coroutines monorepo to v1.10.2
  • d06b5a2 Merge pull request #337 from usuiat/zoomable-with-scroll
  • 16641ad Use surfaceContainerHigh instead of surfaceDim for background color
  • 3a3e134 Create ZoomableWithScrollTest
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [net.engawapg.lib:zoomable](https://github.com/usuiat/Zoomable) from 2.5.0 to 2.6.0.
- [Release notes](https://github.com/usuiat/Zoomable/releases)
- [Commits](usuiat/Zoomable@v2.5.0...v2.6.0)

---
updated-dependencies:
- dependency-name: net.engawapg.lib:zoomable
  dependency-version: 2.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update java code labels Apr 11, 2025
@grimreaper grimreaper merged commit 5dd1086 into master Apr 12, 2025
7 checks passed
@dependabot dependabot Bot deleted the dependabot/gradle/net.engawapg.lib-zoomable-2.6.0 branch April 12, 2025 08:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file java Pull requests that update java code

Projects

No open projects
Status: Done

Development

Successfully merging this pull request may close these issues.

1 participant